-
Notifications
You must be signed in to change notification settings - Fork 24
ALP (Alkaline Phosphatase) reference ranges #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
|
|
For pregnancy, is it both Urine and Serum? Or any of the two? |
|
@dkayiwa it's either of the test and not both. |
|
For the Urine pregnancy test, use: For the Serum pregnancy test, use: For combining them with Urine or Serum pregnancy test, you can use: |
|
@dkayiwa, based on the HB reference range conversation, this applies here as well. So ....the Pregnancy status (Is the patient pregnant Y/N - 5272AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) is better to use over individual pregnancy tests because it offers more comprehensive coverage. Beyond just test results, pregnancy status can be established through clinical assessment, known pregnancy from previous encounters, or even patient self-reporting. |
|
@VeronicaMuthee in that case, the pregnancy expression becomes: |
|
@dkayiwa thanks, i have made the changes |
configuration/backend_configuration/conceptreferencerange/alpreferenceranges.csv
Outdated
Show resolved
Hide resolved
| dd9a6f84-74a3-4268-981a-57c07a47e282,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,ALP Late Adolescents (15 - 18 years) - F,0,80,120,350,450,,"$patient.getAge() >= 15 && $patient.getAge() <= 18 && $patient.getGender() == ""F""" | ||
| 31fee95c-c070-40ed-95e8-c79bbc9c7708,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,ALP Adult Men (>18 years),0,25,35,147,200,,"$patient.getAge() > 18 && $patient.getGender() == ""M""" | ||
| 93395ab8-deb2-4d28-aea5-1be73dc2554b,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,"ALP Adult (Non-Pregnant Women, > 18 years) ",0,25,35,147,200,,"$patient.getAge() > 18 && $patient.getGender() == ""F"" && $patient.isPregnant() == false" | ||
| f072fe91-dccc-4fa9-b4c6-c49cefb80202,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,ALP Pregnant Women,0,40,60,250,350,,"$patient.getGender() == ""F"" ($fn.isObsValueCodedAnswer("CIEL:45", $patient, "703AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") || $fn.isObsValueCodedAnswer("CIEL:1945", $patient, "703AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") || $fn.isObsValueCodedAnswer("CIEL:5272", $patient, "CIEL:1065")) == true" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| f072fe91-dccc-4fa9-b4c6-c49cefb80202,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,ALP Pregnant Women,0,40,60,250,350,,"$patient.getGender() == ""F"" ($fn.isObsValueCodedAnswer("CIEL:45", $patient, "703AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") || $fn.isObsValueCodedAnswer("CIEL:1945", $patient, "703AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") || $fn.isObsValueCodedAnswer("CIEL:5272", $patient, "CIEL:1065")) == true" | |
| f072fe91-dccc-4fa9-b4c6-c49cefb80202,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,ALP Pregnant Women,0,40,60,250,350,,"$patient.getGender() == ""F"" && (($fn.isObsValueCodedAnswer(""CIEL:45"", $patient, ""703AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"") || $fn.isObsValueCodedAnswer(""CIEL:1945"", $patient, ""703AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"") || $fn.isObsValueCodedAnswer(""CIEL:5272"", $patient, ""CIEL:1065"")) == true)" |
| 45d59594-8216-4e17-93fc-4e578090fcaf,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,ALP Adolescents (10 - 18 years) - M,0,150,200,400,500,,"$patient.getAge() > 10 && $patient.getAge() <= 18 && $patient.getGender() == ""M""" | ||
| dd9a6f84-74a3-4268-981a-57c07a47e282,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,ALP Late Adolescents (15 - 18 years) - F,0,80,120,350,450,,"$patient.getAge() >= 15 && $patient.getAge() <= 18 && $patient.getGender() == ""F""" | ||
| 31fee95c-c070-40ed-95e8-c79bbc9c7708,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,ALP Adult Men (>18 years),0,25,35,147,200,,"$patient.getAge() > 18 && $patient.getGender() == ""M""" | ||
| 93395ab8-deb2-4d28-aea5-1be73dc2554b,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,"ALP Adult (Non-Pregnant Women, > 18 years) ",0,25,35,147,200,,"$patient.getAge() > 18 && $patient.getGender() == ""F"" && $patient.isPregnant() == false" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| 93395ab8-deb2-4d28-aea5-1be73dc2554b,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,"ALP Adult (Non-Pregnant Women, > 18 years) ",0,25,35,147,200,,"$patient.getAge() > 18 && $patient.getGender() == ""F"" && $patient.isPregnant() == false" | |
| 93395ab8-deb2-4d28-aea5-1be73dc2554b,785AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,"ALP Adult (Non-Pregnant Women, > 18 years)",0,25,35,147,200,,"$patient.getAge() > 18 && $patient.getGender() == ""F"" && $patient.isPregnant() == false" |
The CSV contains alkaline phosphatase reference ranges, with gender-specific ranges for adolescents and adults, and pregnancy-specific ranges for women.
6b1c22d to
04a64cb
Compare
|
@VeronicaMuthee can you also replace |
configuration/backend_configuration/conceptreferencerange/alpreferenceranges.csv
Outdated
Show resolved
Hide resolved
…eferenceranges.csv Co-authored-by: dkayiwa <[email protected]>
configuration/backend_configuration/conceptreferencerange/alpreferenceranges.csv
Outdated
Show resolved
Hide resolved
…eferenceranges.csv Co-authored-by: dkayiwa <[email protected]>
|
@VeronicaMuthee for |
|
@VeronicaMuthee if the above was a typo, you will create a followup pull request. |
|
Is there a gap at age 1 @dkayiwa @VeronicaMuthee? For a child aged 13-23 months:
This leaves 13-23 month old children without any matching reference range. Should we change: To: |
The CSV contains alkaline phosphatase reference ranges, with gender-specific ranges for adolescents and adults, and pregnancy-specific ranges for women.